home *** CD-ROM | disk | FTP | other *** search
- <HTML>
-
- <HEAD>
-
- <link REL="stylesheet" TYPE="text/css" HREF="%1css/default.css">
-
- <script language="Javascript">
- //LOCALIZATION STRINGS
- var _strNameTooLong = "Please limit the user name to 255 characters.";
- </script>
-
- <script language=Javascript>
- function onSubmit()
- {
- // Check user name
- var strName = document.forms.destForm.userName.value;
- if (strName.length > 255)
- {
- alert(_strNameTooLong);
- document.forms.destForm.userName.focus();
- return;
- }
-
- // Submit the properies
- document.destForm.submit();
- }
-
- function onCancel()
- {
- document.forms[0].reset();
- }
-
- function addProperty()
- {
- var destForm = 'destForm';
- var prop = document.forms[destForm].props.options[document.forms[destForm].props.selectedIndex].value;
- document.forms[destForm].specname.value = document.forms[destForm].specname.value + prop;
- document.forms[destForm].specname.focus();
- }
-
- </script>
-
- </HEAD>
-
- <BODY TOPMARGIN="0" LEFTMARGIN="5" MARGINHEIGHT="0" MARGINWIDTH="5" onload='onSetFilename()'>
- <form action="%2" method="post" name="destForm" target="_self">
-
- %3
-
- <table width='95%'>
- <tr><td class='list' colspan=2> </td></tr>
- <tr><td class='list' colspan=2>Logon as User:</td></tr>
- <tr><td colspan=2 align=right>
- <table width='95%'>
- <tr><td class='list'>User Name: </td><td class='list'><input type='text' size=40 name='userName' value='%4'></td></tr>
- <tr><td class='list'>Password: </td><td class='list'><input type='password' size=40 name='password' value='%5'></td></tr>
- </table>
- </td></tr>
- </table>
-
- <br>
-
- <table align=center CELLPADDING="0" CELLSPACING="5" border=0 width=20%>
- <tr>
- <td>
- <table cellpadding=0 border=0>
- <tr>
- <td class="clsButton" align=middle nowrap>
- <div class="clsButton"><a href="javascript:onSubmit()">Update</a></div></td>
- <td class="clsButton" align=middle nowrap>
- <div class="clsButton"><a href="javascript: onCancel()">Reset</a></div></td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
-
- </form>
- </BODY>
- </HTML>
-